95d5fc06c374f116fb981d405f5d1ea86f4c8a39,core/src/test/java/org/dcache/nfs/v4/OperationSECINFO_NO_NAMETest.java,OperationSECINFO_NO_NAMETest,testSecMix,#,81

Before Change



        ExportFile exportFile = new ExportFile(ClassLoader.getSystemResource("org/dcache/nfs/exports.mix").toURI());
        CompoundContext context = new CompoundContextBuilder()
                .withExportFile(exportFile)
                .build();
        context.currentInode(inode);
        nfs_resop4 result = nfs_resop4.resopFor(nfs_opnum4.OP_SECINFO_NO_NAME);
        op.process(context, result);

After Change



        ExportFile exportFile = new ExportFile(ClassLoader.getSystemResource("org/dcache/nfs/exports.mix").toURI());
        CompoundContext context = new CompoundContextBuilder()
                .withExportFile(exportFile)
                .withCall(generateRpcCall())
                .build();
        context.currentInode(inode);
        nfs_resop4 result = nfs_resop4.resopFor(nfs_opnum4.OP_SECINFO_NO_NAME);
        op.process(context, result);